AnonymousObserver class¶
Defined in
Namespace: System.Reactive
Assembly: System.Reactive.dll
Full name: System.Reactive.AnonymousObserver<T>
Modifiers: public sealed
Summary¶
Class to create an IObserver instance from delegate-based implementations of the On* methods.
Applies to
netstandard2.0
Class hierarchy
classDiagram
class AnonymousObserver~T~
class ObserverBase~T~
ObserverBase~T~ <|-- AnonymousObserver~T~
Inherits from: ObserverBase
Constructors¶
| Name | Summary |
|---|---|
| .ctor | Creates an observer from the specified OnNext,... |
Methods¶
| Name | Summary |
|---|---|
| OnNextCore | Calls the action implementing OnNext. |
| OnErrorCore | Calls the action implementing OnError. |
| OnCompletedCore | Calls the action implementing OnCompleted. |